home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / DataCa~1.cab / _8DD4D80638F84CB997C56E474AB128DB < prev    next >
Encoding:
Text File  |  2006-02-13  |  713 b   |  43 lines

  1. //
  2. // Script with car definition
  3. //
  4. // This file is included by Data\Logic\%Game Mode%\Cars.scr which includes Data\Logic\Common\Car.def
  5. // so it can use keywords declared in Car.def
  6. //
  7. Car( "G1C1" )
  8. {
  9.  
  10.    !include("model.scr")
  11.  
  12.    SkinNormal("G1C1")
  13.    SkinMenu("G1C1_MENU")
  14.    SkinGhost("G1C1_GHOST")
  15.  
  16.    SetParam("m_sCarSoundSet", "g1s_pow")
  17. }
  18.  
  19. Car( "G1C2" )
  20. {
  21.  
  22.    !include("model.scr")
  23.  
  24.    SkinNormal("G1C2")
  25.    SkinMenu("G1C2_MENU")
  26.    SkinGhost("G1C2_GHOST")
  27.  
  28.    SetParam("m_sCarSoundSet", "g1s_pow")
  29. }
  30.  
  31. Car( "G1C3" )
  32. {
  33.  
  34.    !include("model.scr")
  35.  
  36.    SkinNormal("G1C3")
  37.    SkinMenu("G1C3_MENU")
  38.    SkinGhost("G1C3_GHOST")
  39.  
  40.    SetParam("m_sCarSoundSet", "g1s")
  41. }
  42.  
  43.